Skip to content

C# 入门

编写第一个代码

cs
Console.WriteLine("Hello, World!");

修改你编写的代码,使用两个斜杠 // 在上面的代码前面添加代码注释,然后添加新的代码行:

cs
// Console.WriteLine("Hello, World!");
Console.Write("恭喜你!");
Console.Write(" ");
Console.Write("你写下了自己的第一个代码。");

C# 程序的常规结构

C# 程序由一个或多个文件组成。 每个文件都包含零个或多个命名空间。 命名空间包含类、结构、接口、枚举和委托或其他命名空间等类型。下面的示例是包含所有这些元素的 C# 程序的框架。

cs
// 从命名空间导入类型
using System;

// 顶级语句
// Console.WriteLine("Hello, World!");

// 命名空间
namespace YourNamespace
{
    // 类
    class YourClass
    {
    }

    // 结构
    struct YourStruct
    {
    }

    // 接口
    interface IYourInterface
    {
    }

    // 枚举
    enum YourEnum
    {
    }

    // 委托
    delegate int YourDelegate();

    // 嵌套的命名空间
    namespace YourNestedNamespace
    {
        struct YourStruct
        {
        }   
    }
}

前面的示例对程序的入口点使用 顶级语句。 只有一个文件可以有顶级语句。 程序的入口点是该文件中的第一行程序文本。 在本例中,该值为 Console.WriteLine("Hello, World!");

还可以创建一个名为 Main 的静态方法作为程序的入口点,如以下示例所示:

cs
// 从命名空间导入类型
using System;

// 命名空间
namespace YourNamespaceWithMain
{
    // 类
    class YourClass
    {
        // 名为 Main 的静态方法
        static void Main(string[] args)
        {
            Console.WriteLine("Hello, World!");
        }
    }

    // 结构
    struct YourStruct
    {
    }

    // 接口
    interface IYourInterface
    {
    }

    // 枚举
    enum YourEnum
    {
    }

    // 委托
    delegate int YourDelegate();

    // 嵌套的命名空间
    namespace YourNestedNamespaceWithMain
    {
        struct YourStruct
        {
        }   
    }
}

在这种情况下,程序将从 Main 方法的第一行开始,也就是 Console.WriteLine("Hello, World!");

Last updated:

Released under the MIT License.